home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_05 / allison / tdate3.cpp < prev    next >
C/C++ Source or Header  |  1995-03-12  |  508b  |  22 lines

  1. LISTING 9 - Illustrates the Date class
  2. // tdate3.cpp
  3. #include <stdio.h>
  4. #include "date3.h"
  5.  
  6. #define DATELEN 19
  7.  
  8. main()
  9. {
  10.     Date d1(10,1,1951), d2(3,7,1995);
  11.     char buf[DATELEN+1];
  12.     int cmp;
  13.  
  14.     printf("d1 == %s\n",d1.format(buf));
  15.     printf("d2 == %s\n",d2.format(buf));
  16.     cmp = d1.compare(d2);
  17.     printf("d1 %s d2\n",(cmp < 0) ? "precedes"
  18.                                   : (cmp > 0) ? "follows"
  19.                                               : "equals");
  20.     return 0;
  21. }
  22.